home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / distcc_detection.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  81 lines

  1. #
  2. # Noam Rathaus
  3.  
  4. if(description)
  5. {
  6.  script_id(12638);
  7.  script_version("$Revision: 1.3 $");
  8.  
  9.  name["english"] = "DistCC Detection";
  10.  
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] = "
  14. distcc is a program to distribute builds of C, C++, Objective C or 
  15. Objective C++ code across several machines on a network.  
  16. distcc should always generate the same results as a local build, is simple 
  17. to install and use, and is often two or more times faster than a local compile.
  18.  
  19. distcc by default trusts its clients completely that in turn could
  20. allow a malicious client to execute arbitrary commands on the server.
  21.  
  22. For more information about DistCC's security see:
  23. http://distcc.samba.org/security.html
  24.  
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Detect the presence of DistCC";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
  36.  
  37.  script_family(english:"Service detection");
  38.  script_dependencies("find_service2.nasl");
  39.  script_require_ports("Services/unknown");
  40.  exit(0);
  41. }
  42.  
  43. include("misc_func.inc");
  44.  
  45. port = get_kb_item("Services/unknown");
  46. if ( known_service(port:port) ) exit(0);
  47. if ( ! port ) port = 3632;
  48. if(get_port_state(port))
  49. {
  50.  soc = open_sock_tcp(port);
  51.  if(soc)
  52.  { 
  53.   req = string("DIST00000001", 
  54.                "ARGC00000008",
  55.                "ARGV00000002","cc",
  56.                "ARGV00000002","-g",
  57.                "ARGV00000003","-O2",
  58.                "ARGV00000005","-Wall",
  59.                "ARGV00000002","-c",
  60.                "ARGV00000006","main.c",
  61.                "ARGV00000002","-o",
  62.                "ARGV00000006","main.o");
  63.  
  64.   send(socket:soc, data:req);
  65.  
  66.   req = string("DOTI0000001B", "int main()\n{\n return(0);\n}\n");
  67.  
  68.   send(socket:soc, data:req);
  69.  
  70.   response = recv(socket:soc, length:255);
  71. #  display("response: ", response, "\n");
  72.  
  73.   if ("DONE00000" >< response)
  74.   {
  75.    register_service(port:port, proto:"distccd");
  76.    security_hole(port);
  77.   }
  78.  }
  79. }
  80.  
  81.